From a66931d2942009158a032bd933076008840ec7b2 Mon Sep 17 00:00:00 2001 From: "mafetter@fleming.research" Date: Tue, 12 Apr 2005 10:57:13 +0000 Subject: [PATCH] bitkeeper revision 1.1291 (425ba989Nj6H2qCh4WiBC1ZfKP7ZKg) Turn off grant table debugging output --- xen/common/grant_table.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/xen/common/grant_table.c b/xen/common/grant_table.c index 5522b44a82..c12439a524 100644 --- a/xen/common/grant_table.c +++ b/xen/common/grant_table.c @@ -388,7 +388,7 @@ __gnttab_map_grant_ref( handle = get_maptrack_handle(ld->grant_table); } -#ifdef GRANT_DEBUG_VERBOSE +#if GRANT_DEBUG_VERBOSE DPRINTK("Mapping grant ref (%hu) for domain (%hu) with flags (%x)\n", ref, dom, dev_hst_ro_flags); #endif @@ -499,7 +499,7 @@ __gnttab_unmap_grant_ref( (void)__put_user(GNTST_bad_domain, &uop->status); return GNTST_bad_domain; } -#ifdef GRANT_DEBUG_VERBOSE +#if GRANT_DEBUG_VERBOSE DPRINTK("Unmapping grant ref (%hu) for domain (%hu) with handle (%hu)\n", ref, dom, handle); #endif @@ -703,7 +703,7 @@ gnttab_setup_table( return 0; } -#ifdef GRANT_DEBUG +#if GRANT_DEBUG static int gnttab_dump_table(gnttab_dump_table_t *uop) { @@ -821,7 +821,7 @@ do_grant_table_op( case GNTTABOP_setup_table: rc = gnttab_setup_table((gnttab_setup_table_t *)uop, count); break; -#ifdef GRANT_DEBUG +#if GRANT_DEBUG case GNTTABOP_dump_table: rc = gnttab_dump_table((gnttab_dump_table_t *)uop); break; @@ -860,7 +860,7 @@ gnttab_check_unmap( lgt = ld->grant_table; -#ifdef GRANT_DEBUG_VERBOSE +#if GRANT_DEBUG_VERBOSE if ( ld->id != 0 ) { DPRINTK("Foreign unref rd(%d) ld(%d) frm(%x) flgs(%x).\n", -- 2.30.2